home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Personal Computer World 2009 February
/
PCWFEB09.iso
/
Software
/
Full
/
Panda Internet Security 2009
/
IS09PROMO3M.exe
/
[0]
/
Adicional
/
Dutch
/
term.js
< prev
next >
Wrap
Text File
|
2005-07-12
|
764b
|
35 lines
<!--
// Declaraci≤n de variables usadas en este script.
var fixedPath, script;
// Se obtiene la ruta del directorio que contiene el archivo de ayuda.
fixedPath = document.styleSheets[0].href;
if(fixedPath.indexOf("mk:@MSITStore:") !=0) {
fixedPath = document.URL;
}
fixedPath = fixedPath.substring(14,fixedPath.lastIndexOf("\\") + 1);
// "Unescape" la ruta (reemplaza "%20" por espacios en blanco).
fixedPath = unescape(fixedPath);
// Se genera el elemento <script>.
script = "<script language='JavaScript' src='" + fixedPath + "vars.js'></" + "script>";
// Se a±ade el elemento <script> al topic.
document.open();
document.write(script);
document.close();
//-->